How to get the particular row value in DevExpress GridControl using wpf?
How to get the particular row value in DevExpress GridControl using wpf?
2432
08-Aug-2013
shreesh chandra shukla
09-Aug-2013You can try below code for getting the entire row value in DevExpress GridContol using wpf.
var rowValue=gridControl.GetFocusedRow();
thanks